chore: migrate changesets changelog generator#335
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
📝 WalkthroughWalkthroughThis PR updates the Changesets changelog generation tooling by replacing the custom ChangesChangelog Generator Migration
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
View your CI Pipeline Execution ↗ for commit 32fae5b
☁️ Nx Cloud last updated this comment at |
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
@tanstack/angular-store
@tanstack/lit-store
@tanstack/preact-store
@tanstack/react-store
@tanstack/solid-store
@tanstack/store
@tanstack/svelte-store
@tanstack/vue-store
commit: |
Summary
Migrate the Changesets changelog generator from the deprecated compact GitHub generator to the official Changesets GitHub generator.
Changes
@svitejs/changesets-changelog-github-compactwith@changesets/changelog-github.TanStack/storerepo option and adddisableThanks: true.pnpm-lock.yamlfor the official package.Notes
Future changelog entries use the official Changesets GitHub layout instead of the compact suffix layout.
Verification
rg -n "@svitejs/changesets-changelog-github-compact" .produced no matches.rg -n "@changesets/changelog-github" .changeset/config.json package.json pnpm-lock.yaml pnpm-workspace.yamlfound the official package in config, package, and lockfile.node --input-type=module -e "import changelog from '@changesets/changelog-github'; const out = await changelog.getReleaseLine({ summary: 'Fix #123\\nAuthor: test-user' }, 'patch', { repo: 'TanStack/store', disableThanks: true }); console.log(out);"produced- Fix [#123](https://github.com/TanStack/store/issues/123)without a thanks suffix.pnpm changeset status --since=mainreported no packages to be bumped.Summary by CodeRabbit